From: Keir Fraser Date: Tue, 8 Jan 2008 09:40:33 +0000 (+0000) Subject: HVM vif without bridge. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14445^2~73^2~1 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=24895b5f9b8288d7320f13025711980eff492111;p=xen.git HVM vif without bridge. When using xen without a bridge but NAT or routing, HVM domains can't boot, and qemu-dm-n.log contains: config qemu network with xen bridge for tap0 xenbr0 bridge xenbr0 does not exist! That's because the qemu-ifup script always tries to add the vif to a default-named xenbr0 bridge. On the contrary, PV domains just work fine with the same configuration file except HVM parameters. Signed-off-by: Samuel Thibault --- diff --git a/tools/ioemu/target-i386-dm/qemu-ifup b/tools/ioemu/target-i386-dm/qemu-ifup index bdc5aecc0e..bcbee92d65 100644 --- a/tools/ioemu/target-i386-dm/qemu-ifup +++ b/tools/ioemu/target-i386-dm/qemu-ifup @@ -34,4 +34,4 @@ then fi ifconfig $1 0.0.0.0 up -brctl addif $bridge $1 +brctl addif $bridge $1 || true